home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 46
/
Aminet 46 (2001)(GTI - Schatztruhe)[!][Dec 2001].iso
/
Aminet
/
text
/
edit
/
edt10src.lha
/
txt
/
scripts
/
EnumCD.edt
< prev
Wrap
Text File
|
1995-02-28
|
357b
|
22 lines
/* create enumeration for CD */
OPTIONS RESULTS
ReqNumber "Aufzählung" "Basis:"
PARSE VAR RESULT done from
IF done="OK" THEN DO
DisplayOff
Find NEXT "//)"
found=RESULT
DO WHILE found
Find NEXT "//)"
Find PREV "("
Right
Delete LINEEND
Insert from||"//)"
from=from+1
Find NEXT "//)"
found=RESULT
END
DisplayOn
END